home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BK-SC1_1.DMS / in.adf / Examples.Lha / shared lib example / lib_protos.h next >
Encoding:
C/C++ Source or Header  |  1996-02-18  |  181 b   |  16 lines

  1. #ifndef LIB_PROTOS_H
  2. #define LIB_PROTOS_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. int AddTwo(int a, int b);
  9. int AddTree(int a, int b, int c);
  10.  
  11. #ifdef __cplusplus
  12. };
  13. #endif
  14.  
  15. #endif
  16.